home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
XAMPP 1.4.14
/
xampp-win32-1.4.14-installer.exe
/
xampp
/
apache
/
conf
/
moddav.conf
< prev
next >
Wrap
Text File
|
2005-06-12
|
834b
|
35 lines
### Section WEBDAV
# Use name-based virtual hosting.
Listen 81
NameVirtualHost 127.0.0.1:81
<VirtualHost 127.0.0.1:81>
# ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "/xampp/webdav/"
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
AccessFileName .htaccess
DAVLockDB "/xampp/webdav/tmp/LockDB"
#<Location />
#DAV On
#AuthType basic
#AuthName "WAMPP mit WebDAV"
#AuthUserfile /xampp/webdav/.htpasswd
#<LimitExcept GET HEAD OPTIONS>
#require user wampp
#</LimitExcept>
#</Location>
<Directory "/xampp/webdav/">
DAV On
Options ALL
AllowOverride All
AddHandler cgi-script .cgi .exe
Order allow,deny
Allow from all
</Directory>
</VirtualHost>